home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #9 / K-CD-9-2002.ISO / Freedom Force / data1.cab / System_Files / jsw.py < prev    next >
Encoding:
Python Source  |  2002-03-21  |  294 b   |  13 lines

  1. #
  2. # wrapper library for access to Justice Squad C engine
  3. #
  4. if __name__ != '__main__':
  5.     import js
  6.     import ff
  7.     import cshelper
  8.     from cshelper import onStepCB
  9.     
  10. def SpeakWithStep(template, tag, callback='OnStepCB'):
  11.     js.AI_SayPortraitSpeech(template, tag, callback)
  12.  
  13.